added SSCLI 1.0
[windows-sources.git] / shared source / wpf / src / host / shimimpl / deploymentmanifest.cxx
blob5eae86a09e70e37e8b9a96ac92e892c1c9e67fba
1 //------------------------------------------------------------------------
2 //
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 //
5 // Description:
6 // Implements the interface to the deployment manifest
7 //
8 // History:
9 // 2005/05/09 - [....] Created
10 // 2007/09/20 [....] Ported Windows->DevDiv. See SourcesHistory.txt.
12 //------------------------------------------------------------------------
14 #include "PreCompiled.hxx"
15 #include "DeploymentManifest.hxx"
17 CDeploymentManifest::CDeploymentManifest(__in LPCWSTR pswzUri, __in LPCWSTR pswzPath)
19 SetPath(pswzPath);
20 SetUri(pswzUri);
23 HRESULT CDeploymentManifest::Read()
25 HRESULT hr = S_OK;
27 CKHR(GetDeploymentDataFromManifest(
28 GetUri(),
29 GetPath(),
30 m_strApplicationIdentity,
31 m_strProcessorArchitecture,
32 m_strApplicationManifestCodebase,
33 m_strDeploymentProvider));
35 Cleanup:
36 return hr;